@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: poppins, sans-serif;
    background: #f6f6f9;
}

.login-panel {
    background: white;
    box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-align: center;
}

.login-panel h2 {
    width: 100%;
    text-align: center;
}

.field {
    background: #e8f0fe;
    display: flex;
    gap: 1rem;
    border-radius: 0.4rem;
    padding: 0.5rem;
    margin-top: 1rem;
}

.field span {
    font-size: 1.4rem;
}

input {
    background: transparent;
}

input[type="submit"] {
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: #7388cc;
    color: white;
    padding: 0.5rem;
    width: 100%;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms ease;
}

input[type="submit"]:hover {
    background: #4c68c4;
}

@media screen and (max-width: 768px) {
    .login-panel {
        width: 80%;
    }
}

.danger {
    color: coral;
    font-size: 0.89rem;
    font-weight: 500;
}